summaryrefslogtreecommitdiff
path: root/src/astbranch.cpp
blob: 7b3142634997f108c78091f7cbff16a0445c39b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "astbranch.h"

AstBranch::AstBranch( AstNode::Type eType ) :
	AstNode( eType )
{
}

AstBranch::~AstBranch()
{
	for( NodeList::iterator i = lNodes.begin(); i; i++ )
	{
		delete *i;
	}
}